/* ================= Base ================= */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  background: #000;
}

main {
  min-height: 100vh;  min-height: auto;
  flex: 1 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ================= Sections ================= */
section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

section:not(.footer-section) {
  min-height: 100vh;
}

  /*
.h2-wrap h2 {
  margin: 0;
  color: rgba(8, 36, 64, 0.85);

  text-shadow:
    -2px 0 1px rgba(30, 144, 255, 0.75), /* left blue *//*
     2px 0 1px rgba(212, 175, 55, 0.75), /* right gold *//*
     0 3px 6px rgba(0, 0, 0, 0.35);
}
 */
 
  
h2:not(.card-top h2) {
  font-size: clamp(3rem, 7vw, 6rem);

  /* main text color (slightly translucent) */
  color: rgba(8, 36, 64, 0.85);

  /* layered shadows:
     left = dodgerblue
     right = gold
     depth = subtle dark */
  text-shadow:
    -2px 0 1px rgba(30, 144, 255, 0.75), /* left blue */
     2px 0 1px rgba(212, 175, 55, 0.75), /* right gold */
     0 3px 6px rgba(0, 0, 0, 0.35);      /* depth */           /*  looks " shy-say" :      font-family: 'Anta',  Arial,  arial, sans-serif !important; */
}


/* === Section 1 === */
/* ================= PARA-1 (REPIXEL LANDING) ================= */

/* ================= SECTION 1 ================= */

.para-1 {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d1d1d 50%, #222 50%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

/* CENTER BLOCK (OPTION 1 LIFT) */
.para-1 .repixel-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  /*   subtle upward lift */
  transform: translateY(clamp(-4vh, -6vh, -8vh));
  gap: 2.2rem;
}

/* H1 */

/* Anta-Regular.woff2   – headers */
@font-face {
  font-family: 'Anta';
  src: url('https://repixel.de/blog/wp-content/themes/micromoon/assets/fonts/Anta.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}



.para-1 h1 {
  font-size: 2.8rem;
  letter-spacing: 0.6em;
/* +++++++++++++++++++++++++++++++++++++++
** font shnigshnag
**+++++++++++++++++++++++++++++++++++++++
*/  font-family: 'Anta',  Arial,  arial, sans-serif !important;

  font-weight: 300;
  text-transform: uppercase;
  color: #AAA;
  text-shadow: 1px 1px 0px black, -1px -1px 1px #CCC;
  margin:2rem 0 0 0;
}

/* SUPERPIXEL */
.square {
  position: relative;
  width: clamp(15%, 20em, 40%);
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  background: linear-gradient(
    270deg,
    red, orange, yellow, lime, cyan, blue, violet, red
  );
  background-size: 400% 400%;
  animation: rainbowFlow 8s linear infinite;
  overflow: hidden;
}

/* === Animated border (mirrored flow) === */
.square::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  border-radius: inherit;
  background: inherit;
  background-size: inherit;
  /* Reverse animation direction: opposite flow */
  animation: rainbowFlow 8s linear infinite reverse;
  
  /* Mask to show only border area */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 1; transform: scaleX(-1); /* horizontally flipped gradient */
}


/*************************************************************************

Alternative: Mirrored reflection look (flip instead of reverse)

If you want the visual gradient mirrored, not just the animation direction, try:

.square::before {
  ...
  transform: scaleX(-1); /* horizontally flipped gradient */
}
*/
/* === Inner frosted glass core === */
.square::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: calc(10px - 6px);
  background: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(8px) brightness(1.2);
  -webkit-backdrop-filter: blur(8px) brightness(1.2);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  z-index: 2;
}

/* === Rainbow animation === */
@keyframes rainbowFlow {
  0%   { background-position: 100% 0%; }
  25%  { background-position: 0% 0%; }
  50%  { background-position: 0% 100%; }
  75%  { background-position: 100% 100%; }
  100% { background-position: 100% 0%; }
}



/**/